d34b24ec312fe3bb1abbcb8358f0a6dec9e8ce76,orienteer-bpm/src/main/java/org/orienteer/bpm/camunda/handler/history/HistoricDecisionOutputInstanceEntityHandler.java,HistoricDecisionOutputInstanceEntityHandler,applySchema,#OSchemaHelper#,27

Before Change


    @Override
    public void applySchema(OSchemaHelper helper) {
    	super.applySchema(helper);
        helper.oClass(OCLASS_NAME, HistoricEventHandler.OCLASS_NAME)
                .oProperty("decisionInstanceId", OType.STRING, 10)
                .oProperty("clauseId", OType.STRING, 20)
                .oProperty("clauseName", OType.STRING, 30)
                .oProperty("ruleId", OType.STRING, 40)

After Change


    @Override
    public void applySchema(OSchemaHelper helper) {
    	super.applySchema(helper);
        helper.oClass(OCLASS_NAME, HistoricEventHandler.OCLASS_NAME).domain(OClassDomain.SYSTEM)
                .oProperty("decisionInstanceId", OType.STRING, 10)
                .oProperty("clauseId", OType.STRING, 20)
                .oProperty("clauseName", OType.STRING, 30)
                .oProperty("ruleId", OType.STRING, 40)